home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
snip9503
/
pcnvrt.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-03-14
|
645b
|
23 lines
/*
** demo code for converting Pascal strings to/from C strings
**
** public domain by Bob Stout
*/
#include <string.h>
typedef unsigned char UCHAR;
#define P2Cconvert(s) {UCHAR n = *(s); memmove((s), &(s)[1], n); s[n] = '\0';}
#define C2Pconvert(s) {int n = strlen(s); memmove(&(s)[1], (s), n); *(s) = n;}
#if (0) /* Demo code fragment follows */
char string[81];
fgets(string, 81, inFile); /* get 80-char pascal string */
P2Cconvert(string); /* convert it in place */
C2Pconvert(string); /* convert back */
#endif